লাইব্রেরি এবং উন্নত পরিষেবা নির্ভরতা প্রকাশ সম্পদ
সেভ করা পৃষ্ঠা গুছিয়ে রাখতে 'সংগ্রহ' ব্যবহার করুন
আপনার পছন্দ অনুযায়ী কন্টেন্ট সেভ করুন ও সঠিক বিভাগে রাখুন।
লাইব্রেরিগুলির জন্য কনফিগারেশনের সেট এবং স্ক্রিপ্টটি সক্রিয় করেছে উন্নত পরিষেবাগুলি ৷
নির্ভরতা
নির্ভরতা ম্যানিফেস্ট কনফিগারেশনের শীর্ষ স্তর।
সক্রিয় অ্যাডভান্সড সার্ভিস
স্ক্রিপ্ট সক্রিয় করেছে একটি উন্নত পরিষেবার কনফিগারেশন।
JSON প্রতিনিধিত্ব |
---|
{
"serviceId": string,
"userSymbol": string,
"version": string
} |
ক্ষেত্র |
---|
serviceId | string API আবিষ্কার নথিতে দেখানো পরিষেবার শনাক্তকারী (উদাহরণস্বরূপ, "ড্রাইভ")। |
userSymbol | string অ্যাপস স্ক্রিপ্ট প্রকল্পের কোডে এই পরিষেবাটি উল্লেখ করতে ব্যবহৃত শনাক্তকারী। |
version | string পরিষেবার সক্রিয় সংস্করণ (উদাহরণস্বরূপ, "v1")। |
লাইব্রেরি
স্ক্রিপ্ট আমদানি করা একটি লাইব্রেরির কনফিগারেশন।
JSON প্রতিনিধিত্ব |
---|
{
"developmentMode": boolean,
"libraryId": string,
"userSymbol": string,
"version": string
} |
ক্ষেত্র |
---|
developmentMode | boolean true হলে, version উপেক্ষা করা হয় এবং স্ক্রিপ্টটি বর্তমান লাইব্রেরি প্রকল্প সংরক্ষিত কোড ব্যবহার করে, এমনকি যদি সেই কোডটি একটি নতুন সংস্করণে সংরক্ষিত না হয়। |
libraryId | string লাইব্রেরির স্ক্রিপ্ট প্রকল্পের স্ক্রিপ্ট আইডি। আপনি ফাইল > প্রকল্প বৈশিষ্ট্য নির্বাচন করে লাইব্রেরি স্ক্রিপ্টের URL বা স্ক্রিপ্ট সম্পাদকে একটি স্ক্রিপ্ট আইডি খুঁজে পেতে পারেন। |
userSymbol | string এই লাইব্রেরির উল্লেখ করতে স্ক্রিপ্ট প্রজেক্ট কোডে যে লেবেল ব্যবহার করা হয়। |
version | string লাইব্রেরির সংস্করণ যা স্ক্রিপ্ট দ্বারা ব্যবহৃত হয়। এটি হয় একটি সংস্করণ নম্বর বা stable , যার অর্থ শেষ সংস্করণ তৈরি করা হয়েছে৷ |
অন্য কিছু উল্লেখ না করা থাকলে, এই পৃষ্ঠার কন্টেন্ট Creative Commons Attribution 4.0 License-এর অধীনে এবং কোডের নমুনাগুলি Apache 2.0 License-এর অধীনে লাইসেন্স প্রাপ্ত। আরও জানতে, Google Developers সাইট নীতি দেখুন। Java হল Oracle এবং/অথবা তার অ্যাফিলিয়েট সংস্থার রেজিস্টার্ড ট্রেডমার্ক।
2025-08-29 UTC-তে শেষবার আপডেট করা হয়েছে।
[null,null,["2025-08-29 UTC-তে শেষবার আপডেট করা হয়েছে।"],[[["\u003cp\u003eDefines configurations for libraries and advanced services used by a script.\u003c/p\u003e\n"],["\u003cp\u003eOutlines the structure for declaring dependencies, including enabled advanced services and libraries.\u003c/p\u003e\n"],["\u003cp\u003eSpecifies how to configure individual advanced services with their ID, user symbol, and version.\u003c/p\u003e\n"],["\u003cp\u003eDetails the configuration of imported libraries, including development mode, library ID, user symbol, and version.\u003c/p\u003e\n"]]],[],null,["# Libraries and advanced services dependencies manifest resource\n\nThe set of configurations for the [libraries](/apps-script/guides/libraries) and\n[advanced services](/apps-script/guides/services/advanced) the script has\nenabled.\n\nDependencies\n------------\n\nThe top-level of the dependency manifest configuration.\n\n| JSON representation |\n|---------------------------------------------------------------------------------------------------------------------------|\n| ```text { \"enabledAdvancedServices\": [ { object (EnabledAdvancedService) } ], \"libraries\": [ { object (Library) } ] } ``` |\n\n| Fields ||\n|-----------------------------|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|\n| `enabledAdvancedServices[]` | `object (`[EnabledAdvancedService](#enabledadvancedservice)`)` The list of [advanced services](/apps-script/guides/services/advanced) enabled for use by the script project. |\n| `libraries[]` | `object (`[Library](#library)`)` The list of [libraries](/apps-script/guides/libraries) used by the script project. |\n\n### EnabledAdvancedService\n\nThe configuration of an [advanced service](/apps-script/guides/services/advanced)\nthe script has enabled.\n\n| JSON representation |\n|------------------------------------------------------------------------------|\n| ```text { \"serviceId\": string, \"userSymbol\": string, \"version\": string } ``` |\n\n| Fields ||\n|--------------|------------------------------------------------------------------------------------------------------------|\n| `serviceId` | `string` The identifier of the service that is shown in the API discovery document (for example, \"drive\"). |\n| `userSymbol` | `string` The identifier used to refer to this service in the code of the Apps Script project. |\n| `version` | `string` The enabled version of the service (for example, \"v1\"). |\n\n### Library\n\nThe configuration of a [library](/apps-script/guides/libraries)\nthe script has imported.\n\n| JSON representation |\n|------------------------------------------------------------------------------------------------------------|\n| ```carbon { \"developmentMode\": boolean, \"libraryId\": string, \"userSymbol\": string, \"version\": string } ``` |\n\n| Fields ||\n|-------------------|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|\n| `developmentMode` | `boolean` If `true`, `version` is ignored and the script uses the current library project saved code, even if that code hasn't been saved to a new version. |\n| `libraryId` | `string` The script ID of the library's script project. You can find a script ID in the library script's URL or in the script editor by selecting **File \\\u003e Project properties**. |\n| `userSymbol` | `string` The label that is used in the script project code to refer to this library. |\n| `version` | `string` The version of the library that is used by the script. This is either a version number or `stable`, meaning the last version created. |"]]